home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / misc / gms_dev.lha / GMSDev / Includes / clib / strings_protos.h < prev   
Encoding:
C/C++ Source or Header  |  1998-08-01  |  715 b   |  31 lines

  1. #ifndef  CLIB_STRINGS_PROTOS_H
  2. #define  CLIB_STRINGS_PROTOS_H
  3.  
  4. /*
  5. **   $VER: strings_protos.h V1.0
  6. **
  7. **   C prototypes.
  8. **
  9. **   (C) Copyright 1998 DreamWorld Productions.
  10. **       All Rights Reserved.
  11. */
  12.  
  13. #ifndef  DPKERNEL_H
  14. #include <dpkernel/dpkernel.h>
  15. #endif
  16.  
  17. APTR   IntToStr(LONG Integer, BYTE *);
  18. void   StrCapitalize( BYTE *);
  19. BYTE * StrClone(BYTE *, LONG MemFlags);
  20. LONG   StrCompare(BYTE *, BYTE *, LONG Length, WORD CaseSensitive);
  21. void   StrCopy(BYTE *, BYTE *Dest, LONG Length);
  22. LONG   StrLength(BYTE *);
  23. void   StrLower(BYTE *);
  24. APTR   StrMerge(BYTE *, BYTE *, BYTE *Dest);
  25. LONG   StrSearch(BYTE *Search, BYTE *);
  26. void   StrUpper(BYTE *);
  27. LONG   StrToInt(BYTE *);
  28.  
  29. #endif /* CLIB_STRINGS_PROTOS_H */
  30.  
  31.